projects
/
gcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c8111e
)
list_order.12
author
Camm Maguire
<camm@debian.org>
Wed, 24 Jul 2019 23:08:39 +0000
(
00:08
+0100)
committer
Peter Michael Green
<plugwash@raspbian.org>
Wed, 24 Jul 2019 23:08:39 +0000
(
00:08
+0100)
Gbp-Pq: Name list_order.12
o/regexpr.c
patch
|
blob
|
history
diff --git
a/o/regexpr.c
b/o/regexpr.c
index 74f8a7ed2d3ca206bd638e72730c34c9c57b8c46..669776b81ccc905d207649471cc2bfc70ed802bf 100755
(executable)
--- a/
o/regexpr.c
+++ b/
o/regexpr.c
@@
-66,6
+66,7
@@
DEFUN_NEW("COMPILE-REGEXP",object,fScompile_regexp,SI,1,1,NONE,OO,OO,OO,OO,(obje
char *tmp;
object res;
+ ufixnum i=0;
if (type_of(p)!= t_string && type_of(p)!=t_symbol)
not_a_string_or_symbol(p);
@@
-82,9
+83,9
@@
DEFUN_NEW("COMPILE-REGEXP",object,fScompile_regexp,SI,1,1,NONE,OO,OO,OO,OO,(obje
res->v.v_adjustable=0;
res->v.v_offset=0;
res->v.v_self=NULL;
- if (!(res->v.v_self=(void *)regcomp(tmp,&
res->v.v_dim
)))
+ if (!(res->v.v_self=(void *)regcomp(tmp,&
i
)))
FEerror("regcomp failure",0);
- res->v.v_fillp=res->v.v_dim;
+ res->v.v_fillp=res->v.v_dim
=i
;
RETURN1(res);